| Risk Level | Number of Alerts |
|---|---|
|
Alto
|
6
|
|
Médio
|
7
|
|
Baixo
|
9
|
|
Informational
|
16
|
|
Alto |
Advanced SQL Injection - AND boolean-based blind - WHERE or HAVING clause |
|---|---|
| Description |
A SQL injection may be possible using the attached payload
|
| URL | http://localhost:3000/rest/products/search?q=%27%29+AND+5520%3D9834+AND+%28%27zEBQ%27+LIKE+%27zEBQ |
| Método | GET |
| Parameter | q |
| Atacar | ') AND 2102=2102 AND ('ldkN' LIKE 'ldkN |
| Evidence | |
| Other Info | The page results were successfully manipulated using the boolean conditions [') AND 2102=2102 AND ('ldkN' LIKE 'ldkN] and [') AND 5520=9834 AND ('zEBQ' LIKE 'zEBQ] The parameter value being modified was stripped from the HTML output for the purposes of the comparison. Data was returned for the original parameter. The vulnerability was detected by successfully restricting the data originally returned, by manipulating the parameter. |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | |
| Atacar | admin@juice-sh.op' AND 3663=3663 AND 'XQpD'='XQpD |
| Evidence | |
| Other Info | The page results were successfully manipulated using the boolean conditions [admin@juice-sh.op' AND 3663=3663 AND 'XQpD'='XQpD] and [admin@juice-sh.op' AND 5800=1077 AND 'lMfl'='lMfl] The parameter value being modified was stripped from the HTML output for the purposes of the comparison. Data was returned for the original parameter. The vulnerability was detected by successfully restricting the data originally returned, by manipulating the parameter. |
| Instances | 2 |
| Solution |
Do not trust client side input, even if there is client side validation in place.
In general, type check all data on the server side.
If the application uses JDBC, use PreparedStatement or CallableStatement, with parameters passed by '?'
If the application uses ASP, use ADO Command Objects with strong type checking and parameterized queries.
If database Stored Procedures can be used, use them.
Do *not* concatenate strings into queries in the stored procedure, or use 'exec', 'exec immediate', or equivalent functionality!
Do not create dynamic SQL queries using simple string concatenation.
Escape all data received from the client.
Apply an 'allow list' of allowed characters, or a 'deny list' of disallowed characters in user input.
Apply the privilege of least privilege by using the least privileged database user possible.
In particular, avoid using the 'sa' or 'db-owner' database users. This does not eliminate SQL injection, but minimizes its impact.
Grant the minimum database access that is necessary for the application.
|
| Reference | https://cheatsheetseries.owasp.org/cheatsheets/SQL_Injection_Prevention_Cheat_Sheet.html |
| CWE Id | 89 |
| WASC Id | 19 |
| Plugin Id | 90018 |
|
Alto |
Advanced SQL Injection - AND boolean-based blind - WHERE or HAVING clause (MySQL comment) |
|---|---|
| Description |
A SQL injection may be possible using the attached payload
|
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdl2+AND+4647%3D1643%23 |
| Método | GET |
| Parameter | t |
| Atacar | O-yOdl2 AND 3842=3842# |
| Evidence | |
| Other Info | The page results were successfully manipulated using the boolean conditions [O-yOdl2 AND 3842=3842#] and [O-yOdl2 AND 4647=1643#] The parameter value being modified was stripped from the HTML output for the purposes of the comparison. Data was returned for the original parameter. The vulnerability was detected by successfully restricting the data originally returned, by manipulating the parameter. |
| Instances | 1 |
| Solution |
Do not trust client side input, even if there is client side validation in place.
In general, type check all data on the server side.
If the application uses JDBC, use PreparedStatement or CallableStatement, with parameters passed by '?'
If the application uses ASP, use ADO Command Objects with strong type checking and parameterized queries.
If database Stored Procedures can be used, use them.
Do *not* concatenate strings into queries in the stored procedure, or use 'exec', 'exec immediate', or equivalent functionality!
Do not create dynamic SQL queries using simple string concatenation.
Escape all data received from the client.
Apply an 'allow list' of allowed characters, or a 'deny list' of disallowed characters in user input.
Apply the privilege of least privilege by using the least privileged database user possible.
In particular, avoid using the 'sa' or 'db-owner' database users. This does not eliminate SQL injection, but minimizes its impact.
Grant the minimum database access that is necessary for the application.
|
| Reference | https://cheatsheetseries.owasp.org/cheatsheets/SQL_Injection_Prevention_Cheat_Sheet.html |
| CWE Id | 89 |
| WASC Id | 19 |
| Plugin Id | 90018 |
|
Alto |
Advanced SQL Injection - PostgreSQL boolean-based blind - Stacked queries |
|---|---|
| Description |
A SQL injection may be possible using the attached payload
|
| URL | http://localhost:3000/socket.io/?EIO=4%22%29%29%3BSELECT+%28CASE+WHEN+%282166%3D9767%29+THEN+2166+ELSE+1%2F%28SELECT+0%29+END%29--&transport=polling&t=O-yOdl2 |
| Método | GET |
| Parameter | EIO |
| Atacar | 4"));SELECT (CASE WHEN (8961=8961) THEN 8961 ELSE 1/(SELECT 0) END)-- |
| Evidence | |
| Other Info | The page results were successfully manipulated using the boolean conditions [4"));SELECT (CASE WHEN (8961=8961) THEN 8961 ELSE 1/(SELECT 0) END)--] and [4"));SELECT (CASE WHEN (2166=9767) THEN 2166 ELSE 1/(SELECT 0) END)--] The parameter value being modified was stripped from the HTML output for the purposes of the comparison. Data was returned for the original parameter. The vulnerability was detected by successfully restricting the data originally returned, by manipulating the parameter. |
| Instances | 1 |
| Solution |
Do not trust client side input, even if there is client side validation in place.
In general, type check all data on the server side.
If the application uses JDBC, use PreparedStatement or CallableStatement, with parameters passed by '?'
If the application uses ASP, use ADO Command Objects with strong type checking and parameterized queries.
If database Stored Procedures can be used, use them.
Do *not* concatenate strings into queries in the stored procedure, or use 'exec', 'exec immediate', or equivalent functionality!
Do not create dynamic SQL queries using simple string concatenation.
Escape all data received from the client.
Apply an 'allow list' of allowed characters, or a 'deny list' of disallowed characters in user input.
Apply the privilege of least privilege by using the least privileged database user possible.
In particular, avoid using the 'sa' or 'db-owner' database users. This does not eliminate SQL injection, but minimizes its impact.
Grant the minimum database access that is necessary for the application.
|
| Reference | https://cheatsheetseries.owasp.org/cheatsheets/SQL_Injection_Prevention_Cheat_Sheet.html |
| CWE Id | 89 |
| WASC Id | 19 |
| Plugin Id | 90018 |
|
Alto |
Cloud Metadata Potentially Exposed |
|---|---|
| Description |
The Cloud Metadata Attack attempts to abuse a misconfigured NGINX server in order to access the instance metadata maintained by cloud service providers such as AWS, GCP and Azure.
All of these providers provide metadata via an internal unroutable IP address '169.254.169.254' - this can be exposed by incorrectly configured NGINX servers and accessed by using this IP address in the Host header field.
|
| URL | http://localhost:3000/latest/meta-data/ |
| Método | POST |
| Parameter | |
| Atacar | 169.254.169.254 |
| Evidence | |
| Other Info | Based on the successful response status code cloud metadata may have been returned in the response. Check the response data to see if any cloud metadata has been returned. The meta data returned can include information that would allow an attacker to completely compromise the system. |
| Instances | 1 |
| Solution |
Do not trust any user data in NGINX configs. In this case it is probably the use of the $host variable which is set from the 'Host' header and can be controlled by an attacker.
|
| Reference | https://www.nginx.com/blog/trust-no-one-perils-of-trusting-user-input/ |
| CWE Id | |
| WASC Id | |
| Plugin Id | 90034 |
|
Alto |
SQL Injection - SQLite |
|---|---|
| Description |
SQL injection may be possible.
|
| URL | http://localhost:3000/rest/products/search?q=%27%28 |
| Método | GET |
| Parameter | q |
| Atacar | '( |
| Evidence | SQLITE_ERROR |
| Other Info | RDBMS [SQLite] likely, given error message regular expression [SQLITE_ERROR] matched by the HTML results. The vulnerability was detected by manipulating the parameter to cause a database error message to be returned and recognised |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | |
| Atacar | ' |
| Evidence | SQLITE_ERROR |
| Other Info | RDBMS [SQLite] likely, given error message regular expression [SQLITE_ERROR] matched by the HTML results. The vulnerability was detected by manipulating the parameter to cause a database error message to be returned and recognised |
| URL | http://localhost:3000/api/Challenges/?name=Score%20Board |
| Método | GET |
| Parameter | name |
| Atacar | case randomblob(10000000) when not null then 1 else 1 end |
| Evidence | The query time is controllable using parameter value [case randomblob(10000000) when not null then 1 else 1 end ], which caused the request to take [486] milliseconds, parameter value [case randomblob(10000000) when not null then 1 else 1 end ], which caused the request to take [486] milliseconds, when the original unmodified query with value [Score Board] took [258] milliseconds. |
| Other Info | The query time is controllable using parameter value [case randomblob(10000000) when not null then 1 else 1 end ], which caused the request to take [486] milliseconds, parameter value [case randomblob(10000000) when not null then 1 else 1 end ], which caused the request to take [486] milliseconds, when the original unmodified query with value [Score Board] took [258] milliseconds. |
| URL | http://localhost:3000/rest/products/search?q= |
| Método | GET |
| Parameter | q |
| Atacar | case randomblob(100000000) when not null then 1 else 1 end |
| Evidence | The query time is controllable using parameter value [case randomblob(100000000) when not null then 1 else 1 end ], which caused the request to take [417] milliseconds, parameter value [case randomblob(100000000) when not null then 1 else 1 end ], which caused the request to take [417] milliseconds, when the original unmodified query with value [] took [103] milliseconds. |
| Other Info | The query time is controllable using parameter value [case randomblob(100000000) when not null then 1 else 1 end ], which caused the request to take [417] milliseconds, parameter value [case randomblob(100000000) when not null then 1 else 1 end ], which caused the request to take [417] milliseconds, when the original unmodified query with value [] took [103] milliseconds. |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | |
| Atacar | ' | case randomblob(100000000) when not null then "" else "" end | ' |
| Evidence | The query time is controllable using parameter value [' | case randomblob(100000000) when not null then "" else "" end | '], which caused the request to take [391] milliseconds, parameter value [' | case randomblob(100000000) when not null then "" else "" end | '], which caused the request to take [391] milliseconds, when the original unmodified query with value [admin@juice-sh.op] took [33] milliseconds. |
| Other Info | The query time is controllable using parameter value [' | case randomblob(100000000) when not null then "" else "" end | '], which caused the request to take [391] milliseconds, parameter value [' | case randomblob(100000000) when not null then "" else "" end | '], which caused the request to take [391] milliseconds, when the original unmodified query with value [admin@juice-sh.op] took [33] milliseconds. |
| Instances | 5 |
| Solution |
Do not trust client side input, even if there is client side validation in place.
In general, type check all data on the server side.
If the application uses JDBC, use PreparedStatement or CallableStatement, with parameters passed by '?'
If the application uses ASP, use ADO Command Objects with strong type checking and parameterized queries.
If database Stored Procedures can be used, use them.
Do *not* concatenate strings into queries in the stored procedure, or use 'exec', 'exec immediate', or equivalent functionality!
Do not create dynamic SQL queries using simple string concatenation.
Escape all data received from the client.
Apply an 'allow list' of allowed characters, or a 'deny list' of disallowed characters in user input.
Apply the principle of least privilege by using the least privileged database user possible.
In particular, avoid using the 'sa' or 'db-owner' database users. This does not eliminate SQL injection, but minimizes its impact.
Grant the minimum database access that is necessary for the application.
|
| Reference | https://cheatsheetseries.owasp.org/cheatsheets/SQL_Injection_Prevention_Cheat_Sheet.html |
| CWE Id | 89 |
| WASC Id | 19 |
| Plugin Id | 40018 |
|
Alto |
Source Code Disclosure - File Inclusion |
|---|---|
| Description |
The Path Traversal attack technique allows an attacker access to files, directories, and commands that potentially reside outside the web document root directory. An attacker may manipulate a URL in such a way that the web site will execute or reveal the contents of arbitrary files anywhere on the web server. Any device that exposes an HTTP-based interface is potentially vulnerable to Path Traversal.
Most web sites restrict user access to a specific portion of the file-system, typically called the "web document root" or "CGI root" directory. These directories contain the files intended for user access and the executable necessary to drive web application functionality. To access files or execute commands anywhere on the file-system, Path Traversal attacks will utilize the ability of special-characters sequences.
The most basic Path Traversal attack uses the "../" special-character sequence to alter the resource location requested in the URL. Although most popular web servers will prevent this technique from escaping the web document root, alternate encodings of the "../" sequence may help bypass the security filters. These method variations include valid and invalid Unicode-encoding ("..%u2216" or "..%c0%af") of the forward slash character, backslash characters ("..\") on Windows-based servers, URL encoded characters "%2e%2e%2f"), and double URL encoding ("..%255c") of the backslash character.
Even if the web server properly restricts Path Traversal attempts in the URL path, a web application itself may still be vulnerable due to improper handling of user-supplied input. This is a common problem of web applications that use template mechanisms or load static text from files. In variations of the attack, the original URL parameter value is substituted with the file name of one of the web application's dynamic scripts. Consequently, the results can reveal source code because the file is interpreted as text instead of an executable script. These techniques often employ additional special characters such as the dot (".") to reveal the listing of the current working directory, or "%00" NULL characters in order to bypass rudimentary file extension checks.
|
| URL | http://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | sid |
| Atacar | |
| Evidence | |
| Other Info | The output for the source code filename [] differs sufficiently from that of the random parameter [mkvopelowcjsasaavtdhqimxbtxseojyuzxzzu], at [0%], compared to a threshold of [50%] |
| Instances | 1 |
| Solution |
Assume all input is malicious. Use an "accept known good" input validation strategy, i.e., use an allow list of acceptable inputs that strictly conform to specifications. Reject any input that does not strictly conform to specifications, or transform it into something that does. Do not rely exclusively on looking for malicious or malformed inputs (i.e., do not rely on a deny list). However, deny lists can be useful for detecting potential attacks or determining which inputs are so malformed that they should be rejected outright.
When performing input validation, consider all potentially relevant properties, including length, type of input, the full range of acceptable values, missing or extra inputs, syntax, consistency across related fields, and conformance to business rules. As an example of business rule logic, "boat" may be syntactically valid because it only contains alphanumeric characters, but it is not valid if you are expecting colors such as "red" or "blue."
For filenames, use stringent allow lists that limit the character set to be used. If feasible, only allow a single "." character in the filename to avoid weaknesses, and exclude directory separators such as "/". Use an allow list of allowable file extensions.
Warning: if you attempt to cleanse your data, then do so that the end result is not in the form that can be dangerous. A sanitizing mechanism can remove characters such as '.' and ';' which may be required for some exploits. An attacker can try to fool the sanitizing mechanism into "cleaning" data into a dangerous form. Suppose the attacker injects a '.' inside a filename (e.g. "sensi.tiveFile") and the sanitizing mechanism removes the character resulting in the valid filename, "sensitiveFile". If the input data are now assumed to be safe, then the file may be compromised.
Inputs should be decoded and canonicalized to the application's current internal representation before being validated. Make sure that your application does not decode the same input twice. Such errors could be used to bypass allow list schemes by introducing dangerous inputs after they have been checked.
Use a built-in path canonicalization function (such as realpath() in C) that produces the canonical version of the pathname, which effectively removes ".." sequences and symbolic links.
Run your code using the lowest privileges that are required to accomplish the necessary tasks. If possible, create isolated accounts with limited privileges that are only used for a single task. That way, a successful attack will not immediately give the attacker access to the rest of the software or its environment. For example, database applications rarely need to run as the database administrator, especially in day-to-day operations.
When the set of acceptable objects, such as filenames or URLs, is limited or known, create a mapping from a set of fixed input values (such as numeric IDs) to the actual filenames or URLs, and reject all other inputs.
Run your code in a "jail" or similar sandbox environment that enforces strict boundaries between the process and the operating system. This may effectively restrict which files can be accessed in a particular directory or which commands can be executed by your software.
OS-level examples include the Unix chroot jail, AppArmor, and SELinux. In general, managed code may provide some protection. For example, java.io.FilePermission in the Java SecurityManager allows you to specify restrictions on file operations.
This may not be a feasible solution, and it only limits the impact to the operating system; the rest of your application may still be subject to compromise.
|
| Reference |
http://projects.webappsec.org/Path-Traversal
https://cwe.mitre.org/data/definitions/22.html |
| CWE Id | 541 |
| WASC Id | 33 |
| Plugin Id | 43 |
|
Médio |
CSP: Wildcard Directive |
|---|---|
| Description |
Content Security Policy (CSP) is an added layer of security that helps to detect and mitigate certain types of attacks. Including (but not limited to) Cross Site Scripting (XSS), and data injection attacks. These attacks are used for everything from data theft to site defacement or distribution of malware. CSP provides a set of standard HTTP headers that allow website owners to declare approved sources of content that browsers should be allowed to load on that page — covered types are JavaScript, CSS, HTML frames, fonts, images and embeddable objects such as Java applets, ActiveX, audio and video files.
|
| URL | http://localhost:3000/assets |
| Método | GET |
| Parameter | Content-Security-Policy |
| Atacar | |
| Evidence | default-src 'none' |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | http://localhost:3000/assets/i18n |
| Método | GET |
| Parameter | Content-Security-Policy |
| Atacar | |
| Evidence | default-src 'none' |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | http://localhost:3000/assets/public |
| Método | GET |
| Parameter | Content-Security-Policy |
| Atacar | |
| Evidence | default-src 'none' |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | http://localhost:3000/assets/public/images |
| Método | GET |
| Parameter | Content-Security-Policy |
| Atacar | |
| Evidence | default-src 'none' |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| URL | http://localhost:3000/assets/public/images/products |
| Método | GET |
| Parameter | Content-Security-Policy |
| Atacar | |
| Evidence | default-src 'none' |
| Other Info | The following directives either allow wildcard sources (or ancestors), are not defined, or are overly broadly defined: frame-ancestors, form-action The directive(s): frame-ancestors, form-action are among the directives that do not fallback to default-src, missing/excluding them is the same as allowing anything. |
| Instances | 5 |
| Solution |
Ensure that your web server, application server, load balancer, etc. is properly configured to set the Content-Security-Policy header.
|
| Reference |
http://www.w3.org/TR/CSP2/
http://www.w3.org/TR/CSP/ http://caniuse.com/#search=content+security+policy http://content-security-policy.com/ https://github.com/shapesecurity/salvation https://developers.google.com/web/fundamentals/security/csp#policy_applies_to_a_wide_variety_of_resources |
| CWE Id | 693 |
| WASC Id | 15 |
| Plugin Id | 10055 |
|
Médio |
Cross-Domain Misconfiguration |
|---|---|
| Description |
Web browser data loading may be possible, due to a Cross Origin Resource Sharing (CORS) misconfiguration on the web server
|
| URL | http://localhost:3000 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/._darcs |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.bzr |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.DS_Store |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/config |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.git/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.hg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.idea/WebServers.xml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.php_cs.cache |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/id_dsa |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/id_rsa |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.ssh/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/entries |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/.svn/wc.db |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/103.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/blazor.boot.json |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_framework/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/config.json |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/_wpeprivate/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/adminer.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ae.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/api |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/api/Challenges |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/api/Challenges/.env |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/api/Challenges/.htaccess |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/api/Challenges/?name=Score%20Board |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/api/Challenges/trace.axd |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/api/Quantitys |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/api/Quantitys/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/api/Quantitys/.env |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/api/Quantitys/.htaccess |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/api/Quantitys/trace.axd |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/local.xml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/etc/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/app/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/en.json |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/i18n/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/hackingInstructor.png |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/JuiceShop_Logo.png |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/apple_juice.jpg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/apple_pressings.jpg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/artwork2.jpg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/banana_juice.jpg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/carrot_juice.jpeg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/eggfruit_juice.jpg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/fan_facemask.jpg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/fruit_press.jpg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/green_smoothie.jpg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/lemon_juice.jpg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/melon_bike.jpeg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/permafrost.jpg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/products/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/images/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/assets/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/az.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/bd.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/bg.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/BitKeeper |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/br.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ch.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CHANGELOG.txt |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/cn.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/composer.json |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/composer.lock |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/database.yml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/databases.yml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/config/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/core |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/root |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/CVS/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/cz.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/de.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/DEADJOE |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/dk.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ee.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/elmah.axd |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/es-ct.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/es.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/fi.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/FileZilla.xml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/font-mfizz.woff |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/fr.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ftp |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ftp/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ftp/acquisitions.md |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ftp/announcement_encrypted.md |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ftp/coupons_2013.md.bak |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ftp/eastere.gg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ftp/encrypt.pyc |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ftp/incident-support.kdbx |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ftp/legal.md |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ftp/package.json.bak |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ftp/quarantine |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ftp/quarantine/juicy_malware_linux_amd_64.url |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ftp/quarantine/juicy_malware_linux_arm_64.url |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ftp/quarantine/juicy_malware_macos_64.url |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ftp/quarantine/juicy_malware_windows_64.exe.url |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ftp/suspicious_errors.yml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/gb.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ge.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/gr.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/hk.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/angular.js:38:18 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/fileServer.js:39:13 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/fileServer.js:55:18 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/verify.js:105:5 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/verify.js:168:5 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:280:10 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:286:9 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:328:13 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:346:12 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:365:14 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:376:14 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:421:3 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/layer.js:95:5 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/index.js:144:5 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/index.js:145:39 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/hu.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/i.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/id.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/id_dsa |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/id_rsa |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ie.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/il.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/in.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/info.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/it.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/jp.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/key.pem |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/kr.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/meta-data/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/latest/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/lfm.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/lv.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/MaterialIcons-Regular.woff2 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/mm.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/myserver.key |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/nl.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/no.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/phpinfo.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/pl.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/privatekey.key |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/pt.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/rest |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/rest/admin |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/rest/admin/application-version |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/rest/basket |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/rest/basket/1 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/rest/languages |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/rest/products |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/rest/products/search?q= |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/rest/user |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/rest/user/login |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/rest/user/whoami |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ro.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/robots.txt |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ru.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/se.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/server-info |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/server-status |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/server.key |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sftp-config.json |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/si.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sitemanager.xml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sitemap.xml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/.ht.sqlite |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/files/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/test.txt |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/files/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/private/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/default/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/sites/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/socket.io |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/test.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/th.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/tn.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/tr.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/tw.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/ua.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/us.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/vb_test.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/vim_settings.xml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/WinSCP.ini |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/WS_FTP.INI |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | Access-Control-Allow-Origin: * |
| Other Info | The CORS misconfiguration on the web server permits cross-domain read requests from arbitrary third party domains, using unauthenticated APIs on this domain. Web browser implementations do not permit arbitrary third parties to read the response from authenticated APIs, however. This reduces the risk somewhat. This misconfiguration could be used by an attacker to access data that is available in an unauthenticated manner, but which uses some other form of security, such as IP address white-listing. |
| Instances | 979 |
| Solution |
Ensure that sensitive data is not available in an unauthenticated manner (using IP address white-listing, for instance).
Configure the "Access-Control-Allow-Origin" HTTP header to a more restrictive set of domains, or remove all CORS headers entirely, to allow the web browser to enforce the Same Origin Policy (SOP) in a more restrictive manner.
|
| Reference | https://vulncat.fortify.com/en/detail?id=desc.config.dotnet.html5_overly_permissive_cors_policy |
| CWE Id | 264 |
| WASC Id | 14 |
| Plugin Id | 10098 |
|
Médio |
ELMAH Information Leak |
|---|---|
| Description |
The Error Logging Modules and Handlers (ELMAH [elmah.axd]) HTTP Module was found to be available. This module can leak a significant amount of valuable information.
|
| URL | http://localhost:3000/elmah.axd |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | |
| Instances | 1 |
| Solution |
Consider whether or not ELMAH is actually required in production, if it isn't then disable it. If it is then ensure access to it requires authentication and authorization. See also: https://elmah.github.io/a/securing-error-log-pages/
|
| Reference |
https://www.troyhunt.com/aspnet-session-hijacking-with-google/
https://www.nuget.org/packages/elmah https://elmah.github.io/ |
| CWE Id | 94 |
| WASC Id | 14 |
| Plugin Id | 40028 |
|
Médio |
Hidden File Found |
|---|---|
| Description |
A sensitive file was identified as accessible or available. This may leak administrative, configuration, or credential information which can be leveraged by a malicious individual to further attack the system or conduct social engineering efforts.
|
| URL | http://localhost:3000/._darcs |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | |
| URL | http://localhost:3000/.bzr |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | |
| URL | http://localhost:3000/.DS_Store |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | ds_store |
| URL | http://localhost:3000/.git/config |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | git_dir |
| URL | http://localhost:3000/.hg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | |
| URL | http://localhost:3000/.idea/WebServers.xml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | idea |
| URL | http://localhost:3000/.php_cs.cache |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | php_cs_cache |
| URL | http://localhost:3000/.ssh/id_dsa |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | keys |
| URL | http://localhost:3000/.ssh/id_rsa |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | keys |
| URL | http://localhost:3000/.svn/entries |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | svn_dir |
| URL | http://localhost:3000/.svn/wc.db |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | svn_dir |
| URL | http://localhost:3000/_framework/blazor.boot.json |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | Blazor This Blazor config file often lists DLLs which in turn may contain credentials or other sensitive details. |
| URL | http://localhost:3000/_wpeprivate/config.json |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | wordpress/WPEngine |
| URL | http://localhost:3000/adminer.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | adminer |
| URL | http://localhost:3000/app/etc/local.xml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | magento_config |
| URL | http://localhost:3000/BitKeeper |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | |
| URL | http://localhost:3000/CHANGELOG.txt |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | drupal |
| URL | http://localhost:3000/composer.json |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | composer |
| URL | http://localhost:3000/composer.lock |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | composer |
| URL | http://localhost:3000/config/database.yml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | rails_database_yml |
| URL | http://localhost:3000/config/databases.yml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | symfony_databases_yml |
| URL | http://localhost:3000/core |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | coredump |
| URL | http://localhost:3000/CVS/root |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | cvs_dir |
| URL | http://localhost:3000/DEADJOE |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | deadjoe |
| URL | http://localhost:3000/filezilla.xml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | filezilla_xml |
| URL | http://localhost:3000/i.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | phpinfo |
| URL | http://localhost:3000/id_dsa |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | keys |
| URL | http://localhost:3000/id_rsa |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | keys |
| URL | http://localhost:3000/info.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | phpinfo |
| URL | http://localhost:3000/key.pem |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | keys |
| URL | http://localhost:3000/lfm.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | lfm_php |
| URL | http://localhost:3000/myserver.key |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | keys |
| URL | http://localhost:3000/phpinfo.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | phpinfo |
| URL | http://localhost:3000/privatekey.key |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | keys |
| URL | http://localhost:3000/server-info |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | apache_server_info |
| URL | http://localhost:3000/server-status |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | apache_server_status |
| URL | http://localhost:3000/server.key |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | keys |
| URL | http://localhost:3000/sftp-config.json |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | sftp_config |
| URL | http://localhost:3000/sitemanager.xml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | filezilla_xml |
| URL | http://localhost:3000/sites/default/files/.ht.sqlite |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | drupaldb |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/test.txt |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | drupal_backup_migrate |
| URL | http://localhost:3000/test.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | phpinfo |
| URL | http://localhost:3000/vb_test.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | vb_test |
| URL | http://localhost:3000/vim_settings.xml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | jetbrains_vim_settings |
| URL | http://localhost:3000/winscp.ini |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | winscp_ini |
| URL | http://localhost:3000/WS_FTP.ini |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 200 OK |
| Other Info | wsftp_ini |
| Instances | 46 |
| Solution |
Consider whether or not the component is actually required in production, if it isn't then disable it. If it is then ensure access to it requires appropriate authentication and authorization, or limit exposure to internal systems or specific source IPs, etc.
|
| Reference | https://blog.hboeck.de/archives/892-Introducing-Snallygaster-a-Tool-to-Scan-for-Secrets-on-Web-Servers.html |
| CWE Id | 538 |
| WASC Id | 13 |
| Plugin Id | 40035 |
|
Médio |
Missing Anti-clickjacking Header |
|---|---|
| Description |
The response does not include either Content-Security-Policy with 'frame-ancestors' directive or X-Frame-Options to protect against 'ClickJacking' attacks.
|
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoj&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduB&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduq&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yT_0l&sid=UX5dxngXpL5oK4XnACBS |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yT_R3&sid=BPBcmwkyV_j9axReACBT |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTsA1&sid=V-andEQ8w1J1SsujACBK |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTsw4&sid=mVFqq_M4E4xgdftMACBM |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTtcY&sid=V-andEQ8w1J1SsujACBK |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTu8O&sid=WG6nuLJjETJCK29eACBO |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTuJi&sid=mVFqq_M4E4xgdftMACBM |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTvlX&sid=jwinPFQ5QsJzIeWIACBQ |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU2yC&sid=UiancYoE8Nn3MB5JACBW |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU38U&sid=eXdCNdsFWMiCKNOBACBX |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU5BS&sid=UX5dxngXpL5oK4XnACBS |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU5kZ&sid=BPBcmwkyV_j9axReACBT |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU6B7&sid=UiancYoE8Nn3MB5JACBW |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU7Sw&sid=JLChPR5ih2jbgQZAACBa |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU9RQ&sid=eXdCNdsFWMiCKNOBACBX |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUAX-&sid=eAM-N6NqRGniW0I6ACBc |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUBaC&sid=UX5dxngXpL5oK4XnACBS |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUBmA&sid=BIuHBTz5S3kW-40HACBd |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUCtN&sid=BPBcmwkyV_j9axReACBT |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUFaq&sid=5li04RWsBJg-jZAsACBg |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUG7C&sid=eXdCNdsFWMiCKNOBACBX |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUGm2&sid=eAM-N6NqRGniW0I6ACBc |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUHA7&sid=UX5dxngXpL5oK4XnACBS |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUHgW&sid=7--wzy-rqu-Cmp-0ACBi |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUHoY&sid=BIuHBTz5S3kW-40HACBd |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUIYt&sid=7--wzy-rqu-Cmp-0ACBi |
| Método | POST |
| Parameter | x-frame-options |
| Atacar | |
| Evidence | |
| Other Info | |
| Instances | 29 |
| Solution |
Modern Web browsers support the Content-Security-Policy and X-Frame-Options HTTP headers. Ensure one of them is set on all web pages returned by your site/app.
If you expect the page to be framed only by pages on your server (e.g. it's part of a FRAMESET) then you'll want to use SAMEORIGIN, otherwise if you never expect the page to be framed, you should use DENY. Alternatively consider implementing Content Security Policy's "frame-ancestors" directive.
|
| Reference | https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Frame-Options |
| CWE Id | 1021 |
| WASC Id | 15 |
| Plugin Id | 10020 |
|
Baixo |
Application Error Disclosure |
|---|---|
| Description |
This page contains an error/warning message that may disclose sensitive information like the location of the file that produced the unhandled exception. This information can be used to launch further attacks against the web application. The alert could be a false positive if the error message is found inside a documentation page.
|
| URL | http://localhost:3000/api |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 500 Internal Server Error |
| Other Info | |
| URL | http://localhost:3000/rest |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 500 Internal Server Error |
| Other Info | |
| URL | http://localhost:3000/rest/admin |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 500 Internal Server Error |
| Other Info | |
| URL | http://localhost:3000/rest/products |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 500 Internal Server Error |
| Other Info | |
| URL | http://localhost:3000/rest/user |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 500 Internal Server Error |
| Other Info | |
| URL | http://localhost:3000/rest/user/login |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 500 Internal Server Error |
| Other Info | |
| Instances | 6 |
| Solution |
Review the source code of this page. Implement custom error pages. Consider implementing a mechanism to provide a unique error reference/identifier to the client (browser) while logging the details on the server side and not exposing them to the user.
|
| Reference | |
| CWE Id | 200 |
| WASC Id | 13 |
| Plugin Id | 90022 |
|
Baixo |
Cross-Domain JavaScript Source File Inclusion |
|---|---|
| Description |
The page includes one or more script files from a third-party domain.
|
| URL | http://localhost:3000 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/ |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/ |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/._darcs |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/._darcs |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.bzr |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.bzr |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.DS_Store |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.DS_Store |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/config |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/config |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.git/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.hg |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.hg |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/WebServers.xml |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.idea/WebServers.xml |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.php_cs.cache |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.php_cs.cache |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/id_dsa |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/id_dsa |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/id_rsa |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/id_rsa |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.ssh/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/entries |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/entries |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/wc.db |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/.svn/wc.db |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/blazor.boot.json |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/blazor.boot.json |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_framework/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/config.json |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/config.json |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/_wpeprivate/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/adminer.php |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/adminer.php |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/local.xml |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/local.xml |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/etc/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/app/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/ |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/ |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/ |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/ |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/i18n/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/ |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/ |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/ |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/ |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/ |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/ |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/assets/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/BitKeeper |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/BitKeeper |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CHANGELOG.txt |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CHANGELOG.txt |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/composer.json |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/composer.json |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/composer.lock |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/composer.lock |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/database.yml |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/database.yml |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/databases.yml |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/databases.yml |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/config/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/core |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/core |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/root |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/root |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/CVS/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/DEADJOE |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/DEADJOE |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/elmah.axd |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/elmah.axd |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/FileZilla.xml |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/FileZilla.xml |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/angular.js:38:18 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/angular.js:38:18 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/fileServer.js:39:13 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/fileServer.js:39:13 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/fileServer.js:55:18 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/fileServer.js:55:18 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/verify.js:105:5 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/verify.js:105:5 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/verify.js:168:5 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/verify.js:168:5 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:280:10 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:280:10 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:286:9 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:286:9 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:328:13 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:328:13 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:346:12 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:346:12 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:365:14 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:365:14 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:376:14 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:376:14 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:421:3 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:421:3 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/layer.js:95:5 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/layer.js:95:5 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/index.js:144:5 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/index.js:144:5 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/index.js:145:39 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/index.js:145:39 |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/i.php |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/i.php |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/id_dsa |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/id_dsa |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/id_rsa |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/id_rsa |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/info.php |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/info.php |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/key.pem |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/key.pem |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/ |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/ |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/meta-data/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/latest/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/lfm.php |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/lfm.php |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/myserver.key |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/myserver.key |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/phpinfo.php |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/phpinfo.php |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/privatekey.key |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/privatekey.key |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/server-info |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/server-info |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/server-status |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/server-status |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/server.key |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/server.key |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sftp-config.json |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sftp-config.json |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sitemanager.xml |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sitemanager.xml |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sitemap.xml |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sitemap.xml |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/.ht.sqlite |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/.ht.sqlite |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/files/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/test.txt |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/test.txt |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/files/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/private/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/default/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/main.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/polyfills.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/runtime.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/styles.css |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/sites/vendor.js |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/socket.io |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/socket.io |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/test.php |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/test.php |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/vb_test.php |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/vb_test.php |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/vim_settings.xml |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/vim_settings.xml |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/WinSCP.ini |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/WinSCP.ini |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/WS_FTP.INI |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | |
| URL | http://localhost:3000/WS_FTP.INI |
| Método | GET |
| Parameter | //cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/jquery/2.2.4/jquery.min.js"></script> |
| Other Info | |
| Instances | 1730 |
| Solution |
Ensure JavaScript source files are loaded from only trusted sources, and the sources can't be controlled by end users of the application.
|
| Reference | |
| CWE Id | 829 |
| WASC Id | 15 |
| Plugin Id | 10017 |
|
Baixo |
Dangerous JS Functions |
|---|---|
| Description |
A dangerous JS function seems to be in use that would leave the site vulnerable.
|
| URL | http://localhost:3000/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | bypassSecurityTrustHtml |
| Other Info | |
| URL | http://localhost:3000/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | bypassSecurityTrustHtml |
| Other Info | |
| Instances | 2 |
| Solution |
See the references for security advice on the use of these functions.
|
| Reference | https://angular.io/guide/security |
| CWE Id | 749 |
| WASC Id | |
| Plugin Id | 10110 |
|
Baixo |
Full Path Disclosure |
|---|---|
| Description |
The full path of files which might be sensitive has been exposed to the client.
|
| URL | http://localhost:3000/api |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | /home/ |
| Other Info | |
| URL | http://localhost:3000/ftp/coupons_2013.md.bak |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | /home/ |
| Other Info | |
| URL | http://localhost:3000/ftp/eastere.gg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | /home/ |
| Other Info | |
| URL | http://localhost:3000/ftp/encrypt.pyc |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | /home/ |
| Other Info | |
| URL | http://localhost:3000/ftp/package.json.bak |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | /home/ |
| Other Info | |
| URL | http://localhost:3000/ftp/suspicious_errors.yml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | /home/ |
| Other Info | |
| URL | http://localhost:3000/rest |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | /home/ |
| Other Info | |
| URL | http://localhost:3000/rest/admin |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | /home/ |
| Other Info | |
| URL | http://localhost:3000/rest/products |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | /home/ |
| Other Info | |
| URL | http://localhost:3000/rest/user |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | /home/ |
| Other Info | |
| URL | http://localhost:3000/rest/user/login |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | /home/ |
| Other Info | |
| Instances | 11 |
| Solution |
Disable directory browsing in your web server. Refer to the web server documentation.
|
| Reference | https://owasp.org/www-community/attacks/Full_Path_Disclosure |
| CWE Id | 209 |
| WASC Id | 13 |
| Plugin Id | 110009 |
|
Baixo |
Private IP Disclosure |
|---|---|
| Description |
A private IP (such as 10.x.x.x, 172.x.x.x, 192.168.x.x) or an Amazon EC2 private hostname (for example, ip-10-0-56-78) has been found in the HTTP response body. This information might be helpful for further attacks targeting internal systems.
|
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 192.168.99.100:3000 |
| Other Info | 192.168.99.100:3000 192.168.99.100:4200 |
| Instances | 1 |
| Solution |
Remove the private IP address from the HTTP response body. For comments, use JSP/ASP/PHP comment instead of HTML/JavaScript comment which can be seen by client browsers.
|
| Reference | https://tools.ietf.org/html/rfc1918 |
| CWE Id | 200 |
| WASC Id | 13 |
| Plugin Id | 2 |
|
Baixo |
Timestamp Disclosure - Unix |
|---|---|
| Description |
A timestamp was disclosed by the application/web server - Unix
|
| URL | http://localhost:3000/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 1734944650 |
| Other Info | 1734944650, which evaluates to: 2024-12-23 09:04:10 |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 1969196030 |
| Other Info | 1969196030, which evaluates to: 2032-05-26 15:53:50 |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 1970691216 |
| Other Info | 1970691216, which evaluates to: 2032-06-12 23:13:36 |
| URL | http://localhost:3000/rest/products/search?q= |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 1969196030 |
| Other Info | 1969196030, which evaluates to: 2032-05-26 15:53:50 |
| URL | http://localhost:3000/rest/products/search?q= |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 1970691216 |
| Other Info | 1970691216, which evaluates to: 2032-06-12 23:13:36 |
| Instances | 5 |
| Solution |
Manually confirm that the timestamp data is not sensitive, and that the data cannot be aggregated to disclose exploitable patterns.
|
| Reference | http://projects.webappsec.org/w/page/13246936/Information%20Leakage |
| CWE Id | 200 |
| WASC Id | 13 |
| Plugin Id | 10096 |
|
Baixo |
X-Content-Type-Options Header Missing |
|---|---|
| Description |
The Anti-MIME-Sniffing header X-Content-Type-Options was not set to 'nosniff'. This allows older versions of Internet Explorer and Chrome to perform MIME-sniffing on the response body, potentially causing the response body to be interpreted and displayed as a content type other than the declared content type. Current (early 2014) and legacy versions of Firefox will use the declared content type (if one is set), rather than performing MIME-sniffing.
|
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdl2 |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoo&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduC&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yT-xG |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yT-z_ |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yT_0m&sid=UX5dxngXpL5oK4XnACBS |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yT_Ej&sid=UX5dxngXpL5oK4XnACBS |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yT_R8&sid=BPBcmwkyV_j9axReACBT |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTs3j |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTsA6&sid=V-andEQ8w1J1SsujACBK |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTsDu&sid=V-andEQ8w1J1SsujACBK |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTsw9&sid=mVFqq_M4E4xgdftMACBM |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTsZf |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTtuM&sid=mVFqq_M4E4xgdftMACBM |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTu28 |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTu8Q&sid=WG6nuLJjETJCK29eACBO |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTuIB&sid=WG6nuLJjETJCK29eACBO |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTuSN&sid=WG6nuLJjETJCK29eACBO |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTvlY&sid=jwinPFQ5QsJzIeWIACBQ |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTvOm |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTwTR&sid=jwinPFQ5QsJzIeWIACBQ |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU0Md&sid=BPBcmwkyV_j9axReACBT |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU1ta |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU2AO |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU2yF&sid=UiancYoE8Nn3MB5JACBW |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU38Z&sid=eXdCNdsFWMiCKNOBACBX |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU53B&sid=UiancYoE8Nn3MB5JACBW |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU5BT&sid=UX5dxngXpL5oK4XnACBS |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU5ka&sid=BPBcmwkyV_j9axReACBT |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU5N0&sid=eXdCNdsFWMiCKNOBACBX |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU6kU |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU7S_&sid=JLChPR5ih2jbgQZAACBa |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU9oM |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU9qS&sid=JLChPR5ih2jbgQZAACBa |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU9RQ.0&sid=eXdCNdsFWMiCKNOBACBX |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUA-R |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUAY5&sid=eAM-N6NqRGniW0I6ACBc |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUBaD&sid=UX5dxngXpL5oK4XnACBS |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUBmE&sid=BIuHBTz5S3kW-40HACBd |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUChN&sid=eAM-N6NqRGniW0I6ACBc |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUDWb&sid=BIuHBTz5S3kW-40HACBd |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUF3m |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUFar&sid=5li04RWsBJg-jZAsACBg |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUH3L&sid=5li04RWsBJg-jZAsACBg |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUHaP |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUHgY&sid=7--wzy-rqu-Cmp-0ACBi |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUHpl&sid=7--wzy-rqu-Cmp-0ACBi |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUIf9 |
| Método | GET |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoj&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduB&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduq&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yT_0l&sid=UX5dxngXpL5oK4XnACBS |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yT_R3&sid=BPBcmwkyV_j9axReACBT |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTsA1&sid=V-andEQ8w1J1SsujACBK |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTsw4&sid=mVFqq_M4E4xgdftMACBM |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTtcY&sid=V-andEQ8w1J1SsujACBK |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTu8O&sid=WG6nuLJjETJCK29eACBO |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTuJi&sid=mVFqq_M4E4xgdftMACBM |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTvlX&sid=jwinPFQ5QsJzIeWIACBQ |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU2yC&sid=UiancYoE8Nn3MB5JACBW |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU38U&sid=eXdCNdsFWMiCKNOBACBX |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU5BS&sid=UX5dxngXpL5oK4XnACBS |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU5kZ&sid=BPBcmwkyV_j9axReACBT |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU6B7&sid=UiancYoE8Nn3MB5JACBW |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU7Sw&sid=JLChPR5ih2jbgQZAACBa |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU9RQ&sid=eXdCNdsFWMiCKNOBACBX |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUAX-&sid=eAM-N6NqRGniW0I6ACBc |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUBaC&sid=UX5dxngXpL5oK4XnACBS |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUBmA&sid=BIuHBTz5S3kW-40HACBd |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUCtN&sid=BPBcmwkyV_j9axReACBT |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUFaq&sid=5li04RWsBJg-jZAsACBg |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUG7C&sid=eXdCNdsFWMiCKNOBACBX |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUGm2&sid=eAM-N6NqRGniW0I6ACBc |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUHA7&sid=UX5dxngXpL5oK4XnACBS |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUHgW&sid=7--wzy-rqu-Cmp-0ACBi |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUHoY&sid=BIuHBTz5S3kW-40HACBd |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUIYt&sid=7--wzy-rqu-Cmp-0ACBi |
| Método | POST |
| Parameter | x-content-type-options |
| Atacar | |
| Evidence | |
| Other Info | This issue still applies to error type pages (401, 403, 500, etc.) as those pages are often still affected by injection issues, in which case there is still concern for browsers sniffing pages away from their actual content type. At "High" threshold this scan rule will not alert on client or server error responses. |
| Instances | 77 |
| Solution |
Ensure that the application/web server sets the Content-Type header appropriately, and that it sets the X-Content-Type-Options header to 'nosniff' for all web pages.
If possible, ensure that the end user uses a standards-compliant and modern web browser that does not perform MIME-sniffing at all, or that can be directed by the web application/web server to not perform MIME-sniffing.
|
| Reference |
http://msdn.microsoft.com/en-us/library/ie/gg622941%28v=vs.85%29.aspx
https://owasp.org/www-community/Security_Headers |
| CWE Id | 693 |
| WASC Id | 15 |
| Plugin Id | 10021 |
|
Informational |
.env Information Leak |
|---|---|
| Description |
One or more .env files seems to have been located on the server. These files often expose infrastructure or administrative account credentials, API or APP keys, or other sensitive configuration information.
|
| URL | http://localhost:3000/api/Challenges/.env |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 401 Unauthorized |
| Other Info | Based on response status code the .env file may be protected by an authentication or authorization mechanism. |
| URL | http://localhost:3000/api/Quantitys/.env |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 403 Forbidden |
| Other Info | Based on response status code the .env file may be protected by an authentication or authorization mechanism. |
| Instances | 2 |
| Solution |
Ensure the .env file is not accessible.
|
| Reference |
https://www.google.com/search?q=db_password+filetype%3Aenv
https://mobile.twitter.com/svblxyz/status/1045013939904532482 |
| CWE Id | 215 |
| WASC Id | 13 |
| Plugin Id | 40034 |
|
Informational |
.htaccess Information Leak |
|---|---|
| Description |
htaccess files can be used to alter the configuration of the Apache Web Server software to enable/disable additional functionality and features that the Apache Web Server software has to offer.
|
| URL | http://localhost:3000/api/Challenges/.htaccess |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 401 Unauthorized |
| Other Info | Based on response status code htaccess file may be protected by an authentication or authorization mechanism. |
| URL | http://localhost:3000/api/Quantitys/.htaccess |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 403 Forbidden |
| Other Info | Based on response status code htaccess file may be protected by an authentication or authorization mechanism. |
| Instances | 2 |
| Solution |
Ensure the .htaccess file is not accessible.
|
| Reference | http://www.htaccess-guide.com/ |
| CWE Id | 94 |
| WASC Id | 14 |
| Plugin Id | 40032 |
|
Informational |
Authentication Request Identified |
|---|---|
| Description |
The given request has been identified as an authentication request. The 'Other Info' field contains a set of key=value lines which identify any relevant fields. If the request is in a context which has an Authentication Method set to "Auto-Detect" then this rule will change the authentication to match the request identified.
|
| URL | http://localhost:3000/ |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | password |
| Other Info | userParam=email userValue=admin@juice-sh.op passwordParam=password |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | password |
| Other Info | userParam=email userValue=admin@juice-sh.op passwordParam=password referer=https://localhost:3000/ |
| Instances | 2 |
| Solution |
This is an informational alert rather than a vulnerability and so there is nothing to fix.
|
| Reference | https://www.zaproxy.org/docs/desktop/addons/authentication-helper/auth-req-id/ |
| CWE Id | |
| WASC Id | |
| Plugin Id | 10111 |
|
Informational |
Base64 Disclosure |
|---|---|
| Description |
Base64 encoded data was disclosed by the application/web server. Note: in the interests of performance not all base64 strings in the response were analyzed individually, the entire response should be looked at by the analyst/security team/developer(s).
|
| URL | http://localhost:3000/ftp |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC/xhBQAAAWtQTFRFAAAA/PPQ9Nhc2q402qQ12qs2/PTX2pg12p81+/LM89NE9dto2q82+/fp2rM22qY39d6U+/bo2qo2/frx/vz32q812qs12qE279SU8c4w9NZP+/LK//367s9y7s925cp0/vzw9t92//342po2/vz25s1579B6+OSO2bQ0/v799NyT8tE79dld8Msm+OrC/vzx79KA2IYs7s6I9d6R4cJe9+OF/PLI/fry79OF/v30//328tWB89RJ8c9p8c0u9eCf//7+9txs6sts5Mdr+++5+u2z/vrv+/fq6cFz8dBs8tA57cpq+OaU9uGs27Y8//799NdX/PbY9uB89unJ//z14sNf+emh+emk+vDc+uys9+OL8dJy89NH+eic8tN5+OaV+OWR9N2n9dtl9t529+KF9+GB9Nue9NdU8tR/9t5y89qW9dpj89iO89eG/vvu2pQ12Y4z/vzy2Ict/vvv48dr/vzz4sNg///+2Igty3PqwQAAAAF0Uk5TAEDm2GYAAACtSURBVBjTY2AgA2iYlJWVhfohBPg0yx38y92dS0pKVOVBAqIi6sb2vsWWpfrFeTI8QAEhYQEta28nCwM1OVleZqCAmKCEkUdwYWmhQnFeOStQgL9cySqkNNDHVJGbiY0FKCCuYuYSGRsV5KgjxcXIARRQNncNj09JTgqw0ZbkZAcK5LuFJaRmZqfHeNnpSucDBQoiEtOycnIz4qI9bfUKQA6pKKqAgqIKQyK8BgAZ5yfODmnHrQAAAABJRU5ErkJggg== |
| Other Info | �PNG IHDR (-S gAMA ���a kPLTE �����\ڮ4ڤ5ګ6���ژ5ڟ5�����D��hگ6���ڳ6ڦ7�ޔ���ڪ6������گ5ګ5ڡ6�Ԕ��0��O��������r��v��t�����v���ښ6�����y��z��ٴ4����ܓ��;��]��&�������Ҁ؆,�Έ�ޑ��^���������Ӆ�������Ձ��I��i��.��������l��l��k������������s��l��9��j����۶<�����W�����|��������_�������������r��G����y�����ݧ��e��v�����۞��T����r�ږ��c�؎�׆���ڔ5َ3���؇-�����k�����`���؈-�s�� tRNS @��f �IDAT�c` h������!�4���ݝKJJT�A�"����Ŗ���y2<@!a-ko'59Y^f������Gpai�Bq^9+P��\�*�4��T����( �b��#���P6w �OIN �і�d 仅%�ff��x��J� "Ӳrr3�=m� @�(���� C"� �'�iǭ IEND�B`� |
| URL | http://localhost:3000/ftp/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC/xhBQAAAWtQTFRFAAAA/PPQ9Nhc2q402qQ12qs2/PTX2pg12p81+/LM89NE9dto2q82+/fp2rM22qY39d6U+/bo2qo2/frx/vz32q812qs12qE279SU8c4w9NZP+/LK//367s9y7s925cp0/vzw9t92//342po2/vz25s1579B6+OSO2bQ0/v799NyT8tE79dld8Msm+OrC/vzx79KA2IYs7s6I9d6R4cJe9+OF/PLI/fry79OF/v30//328tWB89RJ8c9p8c0u9eCf//7+9txs6sts5Mdr+++5+u2z/vrv+/fq6cFz8dBs8tA57cpq+OaU9uGs27Y8//799NdX/PbY9uB89unJ//z14sNf+emh+emk+vDc+uys9+OL8dJy89NH+eic8tN5+OaV+OWR9N2n9dtl9t529+KF9+GB9Nue9NdU8tR/9t5y89qW9dpj89iO89eG/vvu2pQ12Y4z/vzy2Ict/vvv48dr/vzz4sNg///+2Igty3PqwQAAAAF0Uk5TAEDm2GYAAACtSURBVBjTY2AgA2iYlJWVhfohBPg0yx38y92dS0pKVOVBAqIi6sb2vsWWpfrFeTI8QAEhYQEta28nCwM1OVleZqCAmKCEkUdwYWmhQnFeOStQgL9cySqkNNDHVJGbiY0FKCCuYuYSGRsV5KgjxcXIARRQNncNj09JTgqw0ZbkZAcK5LuFJaRmZqfHeNnpSucDBQoiEtOycnIz4qI9bfUKQA6pKKqAgqIKQyK8BgAZ5yfODmnHrQAAAABJRU5ErkJggg== |
| Other Info | �PNG IHDR (-S gAMA ���a kPLTE �����\ڮ4ڤ5ګ6���ژ5ڟ5�����D��hگ6���ڳ6ڦ7�ޔ���ڪ6������گ5ګ5ڡ6�Ԕ��0��O��������r��v��t�����v���ښ6�����y��z��ٴ4����ܓ��;��]��&�������Ҁ؆,�Έ�ޑ��^���������Ӆ�������Ձ��I��i��.��������l��l��k������������s��l��9��j����۶<�����W�����|��������_�������������r��G����y�����ݧ��e��v�����۞��T����r�ږ��c�؎�׆���ڔ5َ3���؇-�����k�����`���؈-�s�� tRNS @��f �IDAT�c` h������!�4���ݝKJJT�A�"����Ŗ���y2<@!a-ko'59Y^f������Gpai�Bq^9+P��\�*�4��T����( �b��#���P6w �OIN �і�d 仅%�ff��x��J� "Ӳrr3�=m� @�(���� C"� �'�iǭ IEND�B`� |
| URL | http://localhost:3000/ftp/quarantine |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAALGPC/xhBQAAAWtQTFRFAAAA/PPQ9Nhc2q402qQ12qs2/PTX2pg12p81+/LM89NE9dto2q82+/fp2rM22qY39d6U+/bo2qo2/frx/vz32q812qs12qE279SU8c4w9NZP+/LK//367s9y7s925cp0/vzw9t92//342po2/vz25s1579B6+OSO2bQ0/v799NyT8tE79dld8Msm+OrC/vzx79KA2IYs7s6I9d6R4cJe9+OF/PLI/fry79OF/v30//328tWB89RJ8c9p8c0u9eCf//7+9txs6sts5Mdr+++5+u2z/vrv+/fq6cFz8dBs8tA57cpq+OaU9uGs27Y8//799NdX/PbY9uB89unJ//z14sNf+emh+emk+vDc+uys9+OL8dJy89NH+eic8tN5+OaV+OWR9N2n9dtl9t529+KF9+GB9Nue9NdU8tR/9t5y89qW9dpj89iO89eG/vvu2pQ12Y4z/vzy2Ict/vvv48dr/vzz4sNg///+2Igty3PqwQAAAAF0Uk5TAEDm2GYAAACtSURBVBjTY2AgA2iYlJWVhfohBPg0yx38y92dS0pKVOVBAqIi6sb2vsWWpfrFeTI8QAEhYQEta28nCwM1OVleZqCAmKCEkUdwYWmhQnFeOStQgL9cySqkNNDHVJGbiY0FKCCuYuYSGRsV5KgjxcXIARRQNncNj09JTgqw0ZbkZAcK5LuFJaRmZqfHeNnpSucDBQoiEtOycnIz4qI9bfUKQA6pKKqAgqIKQyK8BgAZ5yfODmnHrQAAAABJRU5ErkJggg== |
| Other Info | �PNG IHDR (-S gAMA ���a kPLTE �����\ڮ4ڤ5ګ6���ژ5ڟ5�����D��hگ6���ڳ6ڦ7�ޔ���ڪ6������گ5ګ5ڡ6�Ԕ��0��O��������r��v��t�����v���ښ6�����y��z��ٴ4����ܓ��;��]��&�������Ҁ؆,�Έ�ޑ��^���������Ӆ�������Ձ��I��i��.��������l��l��k������������s��l��9��j����۶<�����W�����|��������_�������������r��G����y�����ݧ��e��v�����۞��T����r�ږ��c�؎�׆���ڔ5َ3���؇-�����k�����`���؈-�s�� tRNS @��f �IDAT�c` h������!�4���ݝKJJT�A�"����Ŗ���y2<@!a-ko'59Y^f������Gpai�Bq^9+P��\�*�4��T����( �b��#���P6w �OIN �і�d 仅%�ff��x��J� "Ӳrr3�=m� @�(���� C"� �'�iǭ IEND�B`� |
| URL | http://localhost:3000/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | com/forms/d/e/1FAIpQLSdaNEuz0dzFA2sexCa0AJ4QOb2OYdEL04eQOLFD2Y4T-BW6ag/viewform |
| Other Info | r��~���{�E �P-'Z4K����k�&� �9��a�Ӈ�8�Cَ��j���� |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | evL584kDrQBzwpROJbN9MKdx7tjfwTkMu95IB1AqYj6gaX7VyZ2oWx3ml1nP |
| Other Info | z���� sN%�}0�q����9��HP*b>�i~�ɝ�[�Y� |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | zr8x6P25e1gNoBXnbMZjdEBt8fMT27uzKhlkiNQG4KRWk9lm7vYJVDEOapqw |
| Other Info | ο1���{X ��l�ct@m��ۻ�*d���V��f�� T1j�� |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 9gLpnXJMDWNQPYlZVakAJBtzfJT2EuKohJkTv7iVlA65xRvOEzem48bw7K32 |
| Other Info | ��rL cP=�YU� $s|��⨄��������7������ |
| URL | http://localhost:3000/se.svg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 0v192H0v96h176v192h96V288h368v-96H272V0h-96z |
| Other Info | ��}�}/��u���h}�]�������}��]!� |
| URL | http://localhost:3000/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ |
| Other Info | �]�㞻�֛qן���Y�����ۯ�� �Q� ��0ӏA�QU�a |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9 |
| Other Info | {"typ":"JWT","alg":"RS256"} |
| Instances | 10 |
| Solution |
Manually confirm that the Base64 data does not leak sensitive information, and that the data cannot be aggregated/used to exploit other vulnerabilities.
|
| Reference | https://projects.webappsec.org/w/page/13246936/Information%20Leakage |
| CWE Id | 200 |
| WASC Id | 13 |
| Plugin Id | 10094 |
|
Informational |
Information Disclosure - Suspicious Comments |
|---|---|
| Description |
The response appears to contain suspicious comments which may help an attacker. Note: Matches made within script blocks or files are against the entire content not only comments.
|
| URL | http://localhost:3000/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | query |
| Other Info | The following pattern was used: \bQUERY\b and was detected in the element starting with: ""use strict";(self.webpackChunkfrontend=self.webpackChunkfrontend||[]).push([[179],{4550:(tt,K,c)=>{c.d(K,{e:()=>s});var k=c(234", see evidence field for the suspicious comment/snippet. |
| URL | http://localhost:3000/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | query |
| Other Info | The following pattern was used: \bQUERY\b and was detected in the element starting with: "(self.webpackChunkfrontend=self.webpackChunkfrontend||[]).push([[736],{9187:(At,ae,d)=>{"use strict";d.d(ae,{Xy:()=>X,ne:()=>Be,", see evidence field for the suspicious comment/snippet. |
| Instances | 2 |
| Solution |
Remove all comments that return information that may help an attacker and fix any underlying problems they refer to.
|
| Reference | |
| CWE Id | 200 |
| WASC Id | 13 |
| Plugin Id | 10027 |
|
Informational |
Modern Web Application |
|---|---|
| Description |
The application appears to be a modern web application. If you need to explore it automatically then the Ajax Spider may well be more effective than the standard one.
|
| URL | http://localhost:3000 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/._darcs |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.bzr |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.DS_Store |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/config |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.git/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.hg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.idea/WebServers.xml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.php_cs.cache |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/id_dsa |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/id_rsa |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.ssh/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/entries |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/.svn/wc.db |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/blazor.boot.json |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_framework/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/config.json |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/_wpeprivate/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/adminer.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/local.xml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/etc/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/app/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/i18n/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/products/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/images/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/assets/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/BitKeeper |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CHANGELOG.txt |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/composer.json |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/composer.lock |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/database.yml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/databases.yml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/config/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/core |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/root |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/CVS/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/DEADJOE |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/elmah.axd |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/FileZilla.xml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/ftp/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <a href="">ftp</a> |
| Other Info | Links have been found that do not have traditional href attributes, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/angular.js:38:18 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/fileServer.js:39:13 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/fileServer.js:55:18 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/verify.js:105:5 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/build/routes/verify.js:168:5 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:280:10 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:286:9 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:328:13 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:346:12 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:365:14 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:376:14 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/index.js:421:3 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/layer.js:95:5 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/express/lib/router/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/index.js:144:5 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/morgan/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/index.js:145:39 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/home/kapellaz/juice-shop/node_modules/serve-index/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/i.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/id_dsa |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/id_rsa |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/info.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/key.pem |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/meta-data/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/latest/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/lfm.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/myserver.key |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/phpinfo.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/privatekey.key |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/server-info |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/server-status |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/server.key |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sftp-config.json |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sitemanager.xml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sitemap.xml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/.ht.sqlite |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/files/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/favicon_js.ico |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/assets/public/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/test.txt |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/scheduled/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/backup_migrate/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/files/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/private/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/default/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/main.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/polyfills.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/runtime.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/styles.css |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/sites/vendor.js |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/socket.io |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/test.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/vb_test.php |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/vim_settings.xml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/WinSCP.ini |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| URL | http://localhost:3000/WS_FTP.INI |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | <script src="//cdnjs.cloudflare.com/ajax/libs/cookieconsent2/3.1.0/cookieconsent.min.js"></script> |
| Other Info | No links have been found while there are scripts, which is an indication that this is a modern web application. |
| Instances | 866 |
| Solution |
This is an informational alert and so no changes are required.
|
| Reference | |
| CWE Id | |
| WASC Id | |
| Plugin Id | 10109 |
|
Informational |
Non-Storable Content |
|---|---|
| Description |
The response contents are not storable by caching components such as proxy servers. If the response does not contain sensitive, personal or user-specific information, it may benefit from being stored and cached, to improve performance.
|
| URL | http://localhost:3000/api |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 500 |
| Other Info | |
| URL | http://localhost:3000/api/Challenges/.env |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 401 |
| Other Info | |
| URL | http://localhost:3000/api/Challenges/.htaccess |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 401 |
| Other Info | |
| URL | http://localhost:3000/api/Challenges/?name=Score%20Board |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 304 |
| Other Info | |
| URL | http://localhost:3000/api/Challenges/trace.axd |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 401 |
| Other Info | |
| URL | http://localhost:3000/api/Quantitys/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 304 |
| Other Info | |
| URL | http://localhost:3000/api/Quantitys/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | authorization: |
| Other Info | |
| URL | http://localhost:3000/api/Quantitys/.env |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 403 |
| Other Info | |
| URL | http://localhost:3000/api/Quantitys/.htaccess |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 403 |
| Other Info | |
| URL | http://localhost:3000/api/Quantitys/trace.axd |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 403 |
| Other Info | |
| URL | http://localhost:3000/ftp/coupons_2013.md.bak |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 403 |
| Other Info | |
| URL | http://localhost:3000/ftp/eastere.gg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 403 |
| Other Info | |
| URL | http://localhost:3000/ftp/encrypt.pyc |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 403 |
| Other Info | |
| URL | http://localhost:3000/ftp/package.json.bak |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 403 |
| Other Info | |
| URL | http://localhost:3000/ftp/suspicious_errors.yml |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 403 |
| Other Info | |
| URL | http://localhost:3000/rest |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 500 |
| Other Info | |
| URL | http://localhost:3000/rest/admin |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 500 |
| Other Info | |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 304 |
| Other Info | |
| URL | http://localhost:3000/rest/admin/application-version |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 304 |
| Other Info | |
| URL | http://localhost:3000/rest/basket |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 401 |
| Other Info | |
| URL | http://localhost:3000/rest/basket/1 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 401 |
| Other Info | |
| URL | http://localhost:3000/rest/basket/1 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | authorization: |
| Other Info | |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | authorization: |
| Other Info | |
| URL | http://localhost:3000/rest/languages |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 304 |
| Other Info | |
| URL | http://localhost:3000/rest/products |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 500 |
| Other Info | |
| URL | http://localhost:3000/rest/products/search?q= |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 304 |
| Other Info | |
| URL | http://localhost:3000/rest/products/search?q= |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | authorization: |
| Other Info | |
| URL | http://localhost:3000/rest/user |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 500 |
| Other Info | |
| URL | http://localhost:3000/rest/user/login |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 500 |
| Other Info | |
| URL | http://localhost:3000/rest/user/whoami |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | authorization: |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoj&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 400 |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduB&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 400 |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduC&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 400 |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduq&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 400 |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=5li04RWsBJg-jZAsACBg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 101 |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=7--wzy-rqu-Cmp-0ACBi |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 101 |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=BIuHBTz5S3kW-40HACBd |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 101 |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=BPBcmwkyV_j9axReACBT |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 101 |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=eAM-N6NqRGniW0I6ACBc |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 101 |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=eXdCNdsFWMiCKNOBACBX |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 101 |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 101 |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=JLChPR5ih2jbgQZAACBa |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 101 |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=jwinPFQ5QsJzIeWIACBQ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 101 |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=mVFqq_M4E4xgdftMACBM |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 101 |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=UiancYoE8Nn3MB5JACBW |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 101 |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=UX5dxngXpL5oK4XnACBS |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 101 |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=V-andEQ8w1J1SsujACBK |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 101 |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=websocket&sid=WG6nuLJjETJCK29eACBO |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | 101 |
| Other Info | |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | 401 |
| Other Info | |
| Instances | 49 |
| Solution |
The content may be marked as storable by ensuring that the following conditions are satisfied:
The request method must be understood by the cache and defined as being cacheable ("GET", "HEAD", and "POST" are currently defined as cacheable)
The response status code must be understood by the cache (one of the 1XX, 2XX, 3XX, 4XX, or 5XX response classes are generally understood)
The "no-store" cache directive must not appear in the request or response header fields
For caching by "shared" caches such as "proxy" caches, the "private" response directive must not appear in the response
For caching by "shared" caches such as "proxy" caches, the "Authorization" header field must not appear in the request, unless the response explicitly allows it (using one of the "must-revalidate", "public", or "s-maxage" Cache-Control response directives)
In addition to the conditions above, at least one of the following conditions must also be satisfied by the response:
It must contain an "Expires" header field
It must contain a "max-age" response directive
For "shared" caches such as "proxy" caches, it must contain a "s-maxage" response directive
It must contain a "Cache Control Extension" that allows it to be cached
It must have a status code that is defined as cacheable by default (200, 203, 204, 206, 300, 301, 404, 405, 410, 414, 501).
|
| Reference |
https://datatracker.ietf.org/doc/html/rfc7234
https://datatracker.ietf.org/doc/html/rfc7231 https://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html |
| CWE Id | 524 |
| WASC Id | 13 |
| Plugin Id | 10049 |
|
Informational |
Session Management Response Identified |
|---|---|
| Description |
The given response has been identified as containing a session management token. The 'Other Info' field contains a set of header tokens that can be used in the Header Based Session Management Method. If the request is in a context which has a Session Management Method set to "Auto-Detect" then this rule will change the session management to use the tokens identified.
|
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | authentication.token |
| Atacar | |
| Evidence | eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJzdGF0dXMiOiJzdWNjZXNzIiwiZGF0YSI6eyJpZCI6MSwidXNlcm5hbWUiOiIiLCJlbWFpbCI6ImFkbWluQGp1aWNlLXNoLm9wIiwicGFzc3dvcmQiOiIwMTkyMDIzYTdiYmQ3MzI1MDUxNmYwNjlkZjE4YjUwMCIsInJvbGUiOiJhZG1pbiIsImRlbHV4ZVRva2VuIjoiIiwibGFzdExvZ2luSXAiOiIiLCJwcm9maWxlSW1hZ2UiOiJhc3NldHMvcHVibGljL2ltYWdlcy91cGxvYWRzL2RlZmF1bHRBZG1pbi5wbmciLCJ0b3RwU2VjcmV0IjoiIiwiaXNBY3RpdmUiOnRydWUsImNyZWF0ZWRBdCI6IjIwMjQtMDUtMjcgMjI6MDQ6NTQuNzM2ICswMDowMCIsInVwZGF0ZWRBdCI6IjIwMjQtMDUtMjcgMjI6MDQ6NTQuNzM2ICswMDowMCIsImRlbGV0ZWRBdCI6bnVsbH0sImlhdCI6MTcxNjg1MjU0Mn0.ZxM_AHjQ0hkq1UhJf8YQ3KK0HKFmldI1-sXolEX5igRBmhWElZJ7Hnk8LqKwgsTdCyz0FlKTdax8EneePr5uQKHvtSRNcemGzY8fVWGx0k965ZJfTfsJ8oG6Yr2rd3UpwArX22LQA5x-x5g6sSdxIiHaqMOhrtXVYLuZjCPpN5k |
| Other Info | json:authentication.token |
| URL | http://localhost:3000/api/Quantitys/ |
| Método | GET |
| Parameter | continueCode |
| Atacar | |
| Evidence | evL584kDrQBzwpROJbN9MKdx7tjfwTkMu95IB1AqYj6gaX7VyZ2oWx3ml1nP |
| Other Info | cookie:continueCode |
| URL | http://localhost:3000/api/Quantitys/ |
| Método | GET |
| Parameter | token |
| Atacar | |
| Evidence | eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJzdGF0dXMiOiJzdWNjZXNzIiwiZGF0YSI6eyJpZCI6MSwidXNlcm5hbWUiOiIiLCJlbWFpbCI6ImFkbWluQGp1aWNlLXNoLm9wIiwicGFzc3dvcmQiOiIwMTkyMDIzYTdiYmQ3MzI1MDUxNmYwNjlkZjE4YjUwMCIsInJvbGUiOiJhZG1pbiIsImRlbHV4ZVRva2VuIjoiIiwibGFzdExvZ2luSXAiOiIiLCJwcm9maWxlSW1hZ2UiOiJhc3NldHMvcHVibGljL2ltYWdlcy91cGxvYWRzL2RlZmF1bHRBZG1pbi5wbmciLCJ0b3RwU2VjcmV0IjoiIiwiaXNBY3RpdmUiOnRydWUsImNyZWF0ZWRBdCI6IjIwMjQtMDUtMjcgMjI6MDQ6NTQuNzM2ICswMDowMCIsInVwZGF0ZWRBdCI6IjIwMjQtMDUtMjcgMjI6MDQ6NTQuNzM2ICswMDowMCIsImRlbGV0ZWRBdCI6bnVsbH0sImlhdCI6MTcxNjg1MjU0Mn0.ZxM_AHjQ0hkq1UhJf8YQ3KK0HKFmldI1-sXolEX5igRBmhWElZJ7Hnk8LqKwgsTdCyz0FlKTdax8EneePr5uQKHvtSRNcemGzY8fVWGx0k965ZJfTfsJ8oG6Yr2rd3UpwArX22LQA5x-x5g6sSdxIiHaqMOhrtXVYLuZjCPpN5k |
| Other Info | cookie:token |
| URL | http://localhost:3000/font-mfizz.woff |
| Método | GET |
| Parameter | continueCode |
| Atacar | |
| Evidence | evL584kDrQBzwpROJbN9MKdx7tjfwTkMu95IB1AqYj6gaX7VyZ2oWx3ml1nP |
| Other Info | cookie:continueCode |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | continueCode |
| Atacar | |
| Evidence | evL584kDrQBzwpROJbN9MKdx7tjfwTkMu95IB1AqYj6gaX7VyZ2oWx3ml1nP |
| Other Info | cookie:continueCode |
| URL | http://localhost:3000/rest/basket |
| Método | GET |
| Parameter | token |
| Atacar | |
| Evidence | eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJzdGF0dXMiOiJzdWNjZXNzIiwiZGF0YSI6eyJpZCI6MSwidXNlcm5hbWUiOiIiLCJlbWFpbCI6ImFkbWluQGp1aWNlLXNoLm9wIiwicGFzc3dvcmQiOiIwMTkyMDIzYTdiYmQ3MzI1MDUxNmYwNjlkZjE4YjUwMCIsInJvbGUiOiJhZG1pbiIsImRlbHV4ZVRva2VuIjoiIiwibGFzdExvZ2luSXAiOiIiLCJwcm9maWxlSW1hZ2UiOiJhc3NldHMvcHVibGljL2ltYWdlcy91cGxvYWRzL2RlZmF1bHRBZG1pbi5wbmciLCJ0b3RwU2VjcmV0IjoiIiwiaXNBY3RpdmUiOnRydWUsImNyZWF0ZWRBdCI6IjIwMjQtMDUtMjcgMjI6MDQ6NTQuNzM2ICswMDowMCIsInVwZGF0ZWRBdCI6IjIwMjQtMDUtMjcgMjI6MDQ6NTQuNzM2ICswMDowMCIsImRlbGV0ZWRBdCI6bnVsbH0sImlhdCI6MTcxNjg1MjU0Mn0.ZxM_AHjQ0hkq1UhJf8YQ3KK0HKFmldI1-sXolEX5igRBmhWElZJ7Hnk8LqKwgsTdCyz0FlKTdax8EneePr5uQKHvtSRNcemGzY8fVWGx0k965ZJfTfsJ8oG6Yr2rd3UpwArX22LQA5x-x5g6sSdxIiHaqMOhrtXVYLuZjCPpN5k |
| Other Info | cookie:token |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | continueCode |
| Atacar | |
| Evidence | evL584kDrQBzwpROJbN9MKdx7tjfwTkMu95IB1AqYj6gaX7VyZ2oWx3ml1nP |
| Other Info | cookie:continueCode |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | continueCode |
| Atacar | |
| Evidence | zr8x6P25e1gNoBXnbMZjdEBt8fMT27uzKhlkiNQG4KRWk9lm7vYJVDEOapqw |
| Other Info | cookie:continueCode |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | token |
| Atacar | |
| Evidence | eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJzdGF0dXMiOiJzdWNjZXNzIiwiZGF0YSI6eyJpZCI6MSwidXNlcm5hbWUiOiIiLCJlbWFpbCI6ImFkbWluQGp1aWNlLXNoLm9wIiwicGFzc3dvcmQiOiIwMTkyMDIzYTdiYmQ3MzI1MDUxNmYwNjlkZjE4YjUwMCIsInJvbGUiOiJhZG1pbiIsImRlbHV4ZVRva2VuIjoiIiwibGFzdExvZ2luSXAiOiIiLCJwcm9maWxlSW1hZ2UiOiJhc3NldHMvcHVibGljL2ltYWdlcy91cGxvYWRzL2RlZmF1bHRBZG1pbi5wbmciLCJ0b3RwU2VjcmV0IjoiIiwiaXNBY3RpdmUiOnRydWUsImNyZWF0ZWRBdCI6IjIwMjQtMDUtMjcgMjI6MDQ6NTQuNzM2ICswMDowMCIsInVwZGF0ZWRBdCI6IjIwMjQtMDUtMjcgMjI6MDQ6NTQuNzM2ICswMDowMCIsImRlbGV0ZWRBdCI6bnVsbH0sImlhdCI6MTcxNjg1MjU0Mn0.ZxM_AHjQ0hkq1UhJf8YQ3KK0HKFmldI1-sXolEX5igRBmhWElZJ7Hnk8LqKwgsTdCyz0FlKTdax8EneePr5uQKHvtSRNcemGzY8fVWGx0k965ZJfTfsJ8oG6Yr2rd3UpwArX22LQA5x-x5g6sSdxIiHaqMOhrtXVYLuZjCPpN5k |
| Other Info | cookie:token |
| URL | http://localhost:3000/rest/user/whoami |
| Método | GET |
| Parameter | continueCode |
| Atacar | |
| Evidence | evL584kDrQBzwpROJbN9MKdx7tjfwTkMu95IB1AqYj6gaX7VyZ2oWx3ml1nP |
| Other Info | cookie:continueCode |
| URL | http://localhost:3000/rest/user/whoami |
| Método | GET |
| Parameter | token |
| Atacar | |
| Evidence | eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJzdGF0dXMiOiJzdWNjZXNzIiwiZGF0YSI6eyJpZCI6MSwidXNlcm5hbWUiOiIiLCJlbWFpbCI6ImFkbWluQGp1aWNlLXNoLm9wIiwicGFzc3dvcmQiOiIwMTkyMDIzYTdiYmQ3MzI1MDUxNmYwNjlkZjE4YjUwMCIsInJvbGUiOiJhZG1pbiIsImRlbHV4ZVRva2VuIjoiIiwibGFzdExvZ2luSXAiOiIiLCJwcm9maWxlSW1hZ2UiOiJhc3NldHMvcHVibGljL2ltYWdlcy91cGxvYWRzL2RlZmF1bHRBZG1pbi5wbmciLCJ0b3RwU2VjcmV0IjoiIiwiaXNBY3RpdmUiOnRydWUsImNyZWF0ZWRBdCI6IjIwMjQtMDUtMjcgMjI6MDQ6NTQuNzM2ICswMDowMCIsInVwZGF0ZWRBdCI6IjIwMjQtMDUtMjcgMjI6MDQ6NTQuNzM2ICswMDowMCIsImRlbGV0ZWRBdCI6bnVsbH0sImlhdCI6MTcxNjg1MjU0Mn0.ZxM_AHjQ0hkq1UhJf8YQ3KK0HKFmldI1-sXolEX5igRBmhWElZJ7Hnk8LqKwgsTdCyz0FlKTdax8EneePr5uQKHvtSRNcemGzY8fVWGx0k965ZJfTfsJ8oG6Yr2rd3UpwArX22LQA5x-x5g6sSdxIiHaqMOhrtXVYLuZjCPpN5k |
| Other Info | cookie:token |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | continueCode |
| Atacar | |
| Evidence | evL584kDrQBzwpROJbN9MKdx7tjfwTkMu95IB1AqYj6gaX7VyZ2oWx3ml1nP |
| Other Info | cookie:continueCode |
| Instances | 12 |
| Solution |
This is an informational alert rather than a vulnerability and so there is nothing to fix.
|
| Reference | https://www.zaproxy.org/docs/desktop/addons/authentication-helper/session-mgmt-id |
| CWE Id | |
| WASC Id | |
| Plugin Id | 10112 |
|
Informational |
Storable and Cacheable Content |
|---|---|
| Description |
The response contents are storable by caching components such as proxy servers, and may be retrieved directly from the cache, rather than from the origin server by the caching servers, in response to similar requests from other users. If the response data is sensitive, personal or user-specific, this may result in sensitive information being leaked. In some cases, this may even result in a user gaining complete control of the session of another user, depending on the configuration of the caching components in use in their environment. This is primarily an issue where "shared" caching servers such as "proxy" caches are configured on the local network. This configuration is typically found in corporate or educational environments, for instance.
|
| URL | http://localhost:3000/api/Challenges |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/api/Challenges/?name=Score%20Board |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/api/Quantitys |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/api/Quantitys/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/assets |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/assets/i18n |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/assets/public |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/assets/public/images |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/assets/public/images/products |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/ftp |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/ftp/ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/ftp/quarantine |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/rest/admin/application-version |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/rest/languages |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/rest/products/search?q= |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/rest/user/whoami |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/robots.txt |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdl2 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoo&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduC&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yT-xG |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yT-z_ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yT_0m&sid=UX5dxngXpL5oK4XnACBS |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yT_Ej&sid=UX5dxngXpL5oK4XnACBS |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yT_R8&sid=BPBcmwkyV_j9axReACBT |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTs3j |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTsA6&sid=V-andEQ8w1J1SsujACBK |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTsDu&sid=V-andEQ8w1J1SsujACBK |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTsw9&sid=mVFqq_M4E4xgdftMACBM |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTsZf |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTtuM&sid=mVFqq_M4E4xgdftMACBM |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTu28 |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTu8Q&sid=WG6nuLJjETJCK29eACBO |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTuIB&sid=WG6nuLJjETJCK29eACBO |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTuSN&sid=WG6nuLJjETJCK29eACBO |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTvlY&sid=jwinPFQ5QsJzIeWIACBQ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTvOm |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTwTR&sid=jwinPFQ5QsJzIeWIACBQ |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU0Md&sid=BPBcmwkyV_j9axReACBT |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU1ta |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU2AO |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU2yF&sid=UiancYoE8Nn3MB5JACBW |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU38Z&sid=eXdCNdsFWMiCKNOBACBX |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU53B&sid=UiancYoE8Nn3MB5JACBW |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU5BT&sid=UX5dxngXpL5oK4XnACBS |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU5ka&sid=BPBcmwkyV_j9axReACBT |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU5N0&sid=eXdCNdsFWMiCKNOBACBX |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU6kU |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU7S_&sid=JLChPR5ih2jbgQZAACBa |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU9oM |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU9qS&sid=JLChPR5ih2jbgQZAACBa |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU9RQ.0&sid=eXdCNdsFWMiCKNOBACBX |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUA-R |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUAY5&sid=eAM-N6NqRGniW0I6ACBc |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUBaD&sid=UX5dxngXpL5oK4XnACBS |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUBmE&sid=BIuHBTz5S3kW-40HACBd |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUChN&sid=eAM-N6NqRGniW0I6ACBc |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUDWb&sid=BIuHBTz5S3kW-40HACBd |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUF3m |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUFar&sid=5li04RWsBJg-jZAsACBg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUH3L&sid=5li04RWsBJg-jZAsACBg |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUHaP |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUHgY&sid=7--wzy-rqu-Cmp-0ACBi |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUHpl&sid=7--wzy-rqu-Cmp-0ACBi |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoj&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduB&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduq&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yT_0l&sid=UX5dxngXpL5oK4XnACBS |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yT_R3&sid=BPBcmwkyV_j9axReACBT |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTsA1&sid=V-andEQ8w1J1SsujACBK |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTsw4&sid=mVFqq_M4E4xgdftMACBM |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTtcY&sid=V-andEQ8w1J1SsujACBK |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTu8O&sid=WG6nuLJjETJCK29eACBO |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTuJi&sid=mVFqq_M4E4xgdftMACBM |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yTvlX&sid=jwinPFQ5QsJzIeWIACBQ |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU2yC&sid=UiancYoE8Nn3MB5JACBW |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU38U&sid=eXdCNdsFWMiCKNOBACBX |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU5BS&sid=UX5dxngXpL5oK4XnACBS |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU5kZ&sid=BPBcmwkyV_j9axReACBT |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU6B7&sid=UiancYoE8Nn3MB5JACBW |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU7Sw&sid=JLChPR5ih2jbgQZAACBa |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yU9RQ&sid=eXdCNdsFWMiCKNOBACBX |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUAX-&sid=eAM-N6NqRGniW0I6ACBc |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUBaC&sid=UX5dxngXpL5oK4XnACBS |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUBmA&sid=BIuHBTz5S3kW-40HACBd |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUCtN&sid=BPBcmwkyV_j9axReACBT |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUFaq&sid=5li04RWsBJg-jZAsACBg |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUG7C&sid=eXdCNdsFWMiCKNOBACBX |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUGm2&sid=eAM-N6NqRGniW0I6ACBc |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUHA7&sid=UX5dxngXpL5oK4XnACBS |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUHgW&sid=7--wzy-rqu-Cmp-0ACBi |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yUHoY&sid=BIuHBTz5S3kW-40HACBd |
| Método | POST |
| Parameter | |
| Atacar | |
| Evidence | |
| Other Info | In the absence of an explicitly specified caching lifetime directive in the response, a liberal lifetime heuristic of 1 year was assumed. This is permitted by rfc7234. |
| Instances | 95 |
| Solution |
Validate that the response does not contain sensitive, personal or user-specific information. If it does, consider the use of the following HTTP response headers, to limit, or prevent the content being stored and retrieved from the cache by another user:
Cache-Control: no-cache, no-store, must-revalidate, private
Pragma: no-cache
Expires: 0
This configuration directs both HTTP 1.0 and HTTP 1.1 compliant caching servers to not store the response, and to not retrieve the response (without validation) from the cache, in response to a similar request.
|
| Reference |
https://datatracker.ietf.org/doc/html/rfc7234
https://datatracker.ietf.org/doc/html/rfc7231 https://www.w3.org/Protocols/rfc2616/rfc2616-sec13.html |
| CWE Id | 524 |
| WASC Id | 13 |
| Plugin Id | 10049 |
|
Informational |
Trace.axd Information Leak |
|---|---|
| Description |
The ASP.NET Trace Viewer (trace.axd) was found to be available. This component can leak a significant amount of valuable information.
|
| URL | http://localhost:3000/api/Challenges/trace.axd |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 401 Unauthorized |
| Other Info | Based on response status code Trace Viewer may be protected by an authentication or authorization mechanism. |
| URL | http://localhost:3000/api/Quantitys/trace.axd |
| Método | GET |
| Parameter | |
| Atacar | |
| Evidence | HTTP/1.1 403 Forbidden |
| Other Info | Based on response status code Trace Viewer may be protected by an authentication or authorization mechanism. |
| Instances | 2 |
| Solution |
Consider whether or not Trace Viewer is actually required in production, if it isn't then disable it. If it is then ensure access to it requires authentication and authorization.
|
| Reference |
https://msdn.microsoft.com/en-us/library/bb386420.aspx
https://msdn.microsoft.com/en-us/library/wwh16c6c.aspx https://www.dotnetperls.com/trace |
| CWE Id | 215 |
| WASC Id | 13 |
| Plugin Id | 40029 |
|
Informational |
User Agent Fuzzer |
|---|---|
| Description |
Check for differences in response based on fuzzed User Agent (eg. mobile sites, access as a Search Engine Crawler). Compares the response statuscode and the hashcode of the response body with the original response.
|
| URL | http://localhost:3000/assets |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/i18n |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/i18n |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/i18n |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/i18n |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/i18n |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/i18n |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/i18n |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/i18n |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/i18n |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/i18n |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/i18n |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/i18n |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/assets/public/images/products |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/admin/application-configuration |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/continue-code |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/languages |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdl2 |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdl2 |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdl2 |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdl2 |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdl2 |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdl2 |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdl2 |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdl2 |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdl2 |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdl2 |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdl2 |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdl2 |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduC&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduC&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduC&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduC&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduC&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduC&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduC&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduC&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduC&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduC&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduC&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduC&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | GET |
| Parameter | Header User-Agent |
| Atacar | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/rest/user/login |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoj&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoj&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoj&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoj&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoj&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoj&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoj&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoj&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoj&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoj&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoj&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOdoj&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduB&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduB&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduB&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduB&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduB&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduB&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduB&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduB&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduB&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduB&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduB&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduB&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduq&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduq&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 6.0) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduq&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduq&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Trident/7.0; rv:11.0) like Gecko |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduq&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/75.0.3739.0 Safari/537.36 Edg/75.0.109.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduq&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduq&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:93.0) Gecko/20100101 Firefox/91.0 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduq&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Googlebot/2.1; +http://www.google.com/bot.html) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduq&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (compatible; Yahoo! Slurp; http://help.yahoo.com/help/us/ysearch/slurp) |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduq&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; CPU iPhone OS 8_0_2 like Mac OS X) AppleWebKit/600.1.4 (KHTML, like Gecko) Version/8.0 Mobile/12A366 Safari/600.1.4 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduq&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | Mozilla/5.0 (iPhone; U; CPU iPhone OS 3_0 like Mac OS X; en-us) AppleWebKit/528.18 (KHTML, like Gecko) Version/4.0 Mobile/7A341 Safari/528.16 |
| Evidence | |
| Other Info | |
| URL | http://localhost:3000/socket.io/?EIO=4&transport=polling&t=O-yOduq&sid=FZBHsnDCjWjvo9i3AAAE |
| Método | POST |
| Parameter | Header User-Agent |
| Atacar | msnbot/1.1 (+http://search.msn.com/msnbot.htm) |
| Evidence | |
| Other Info | |
| Instances | 157 |
| Solution | |
| Reference | https://owasp.org/wstg |
| CWE Id | |
| WASC Id | |
| Plugin Id | 10104 |